home *** CD-ROM | disk | FTP | other *** search
/ Super League / Super League.iso / TUTORIAL / CURSO / HELP.DXR / 00043.ls < prev    next >
Encoding:
Text File  |  1997-03-25  |  325 b   |  19 lines

  1. on startMovie
  2.   repeat with i = 13 to 20
  3.     set the visible of sprite i to 0
  4.   end repeat
  5. end
  6.  
  7. on general3
  8.   global b
  9.   set i to 0
  10.   repeat with i = 13 to 20
  11.     if rollOver(i) then
  12.       set the visible of sprite i to 1
  13.       updateStage()
  14.       next repeat
  15.     end if
  16.     set the visible of sprite i to 0
  17.   end repeat
  18. end
  19.